Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

210
Views
La carga de Firebase Storage siempre se agota (error de "almacenamiento/límite de reintentos excedido")

Estoy escribiendo un script usando el SDK de Firebase JavaScript (cliente, no administrador) para manejar la carga de una gran cantidad de imágenes (~1.5 mb cada una) desde un enlace de descarga externo a Google Firebase Storage, y no puedo cargar correctamente una sola imagen.

Este es el fragmento de código que estoy probando con una sola URL de imagen:

 const firebaseConfig = { // firebase config details }; const app = initializeApp(firebaseConfig); const storage = getStorage(app); storage.maxOperationRetryTime = 120000; storage.maxUploadRetryTime = 120000; const addImageToFirebase = async (url) => { const download = await fetch(url); const blob = await download.blob(); const path = "test-folder/test-file.png"; const imageRef = ref(storage, path); try { await uploadBytes(imageRef, blob); console.log('success!'); } catch (error) { console.log(error); } } const imageUrl = // download link for test url ; addImageToFirebase(imageUrl);

Al ejecutar el código, aparece el siguiente error en la terminal, sin importar cuánto tiempo establezca maxOperationRetyTime o maxUploadRetryTime:

 [StorageError [FirebaseError]: Firebase Storage: Max retry time for operation exceeded, please try again. (storage/retry-limit-exceeded)] { code: 'storage/retry-limit-exceeded', customData: { serverResponse: null }, _baseMessage: 'Firebase Storage: Max retry time for operation exceeded, please try again. (storage/retry-limit-exceeded)' }

¿Alguien sabe por qué no se pudo realizar la carga?

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!